home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / xcdplayer / Imakefile < prev    next >
Makefile  |  1994-08-01  |  2KB  |  43 lines

  1. /*
  2.  * Copyright (C) 1990 Regents of the University of California.
  3.  *
  4.  * Permission to use, copy, modify, distribute, and sell this software and
  5.  * its documentation for any purpose is hereby granted without fee,
  6.  * provided that the above copyright notice appear in all copies and that
  7.  * both that copyright notice and this permission notice appear in
  8.  * supporting documentation, and that the name of the University of
  9.  * California not be used in advertising or publicity pertaining to
  10.  * distribution of the software without specific, written prior
  11.  * permission.  the University of California makes no representations
  12.  * about the suitability of this software for any purpose.  It is provided
  13.  * "as is" without express or implied warranty.
  14.  */
  15.  
  16. LOCAL_LIBRARIES = XawClientLibs
  17. LINTLIBS = -lXaw -lXt -lX11
  18. #ifdef SunArchitecture
  19.            SRCS = main.c top_setup.c logo_setup.c button_setup.c cdrom_callb.c\
  20.                   cdrom_sun.c internals.c shuffle.c program.c leds.c debug.c 
  21.  
  22.            OBJS = main.o top_setup.o logo_setup.o button_setup.o cdrom_callb.o\
  23.                   cdrom_sun.o internals.o shuffle.o program.o leds.o debug.o
  24. #endif
  25. #ifdef SGIArchitecture
  26. LOCAL_LIBRARIES = XawClientLibs -lcdaudio -lmediad -lds -laudio -lm
  27.            SRCS = main.c top_setup.c logo_setup.c button_setup.c cdrom_callb.c\
  28.                   cdrom_sgi.c internals.c shuffle.c program.c leds.c debug.c 
  29.  
  30.            OBJS = main.o top_setup.o logo_setup.o button_setup.o cdrom_callb.o\
  31.                   cdrom_sgi.o internals.o shuffle.o program.o leds.o debug.o
  32. #endif
  33.  
  34.        PROGRAMS = xcdplayer
  35.  
  36. AllTarget(${PROGRAMS})
  37.  
  38. ComplexProgramTarget(xcdplayer)
  39. NormalProgramTarget(cdinfo, cdinfo.o,,,)
  40. NormalProgramTarget(cdgrab, cdgrab.o,,,)
  41. NormalLintTarget(${SRCS})
  42. InstallAppDefaults(XCdplayer)
  43.